home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global gCurrentSprite
- set the keyDownScript to "if the key = RETURN then RunOff"
- if length(field "name") > 15 then
- set gCurrentSprite to 3
- RunOff()
- end if
- if length(field "movie") > 15 then
- set gCurrentSprite to 4
- RunOff()
- end if
- end
-
- on mouseDown
- global gCurrentSprite
- if rollOver(3) then
- set gCurrentSprite to 3
- else
- if rollOver(4) then
- set gCurrentSprite to 4
- end if
- end if
- end
-
- on exitFrame
- global gStart, gCurrentSprite
- set gStart to 1
- end
-